ShowMessage
ShowMessage Title$, Text$
 
Parameters:

    Title$ = The TITLE this message dislog should use
    Text$ = The message to be shown to the user
Returns: NONE
 

     ShowMessage pops a windows message dialog. Messages are normally used to convery to the user (of your programs) that something important has happened.



FACTS:


      * ShowMessage is not asynchronous, so the PlayBasic application will halt while the dialog is open.


 
Example Source: Download This Example
; Include the Dialogs library in this program
  #Include "PBDialogs"
  
;
  Cls 255
  
; Show the message the dialog
  Title$="PLAY DIALOG SHOW MESSAGE"
  Text$="This is a very important message for the user"
  ShowMessage(Title$,Text$)
  
  Sync
  WaitKey
  
 
Related Info: :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com